home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / MPW Interfaces & Libraries / AStructMacs / Sample.make < prev    next >
Encoding:
Text File  |  1992-01-29  |  694 b   |  32 lines  |  [TEXT/MPS ]

  1. #    MakeFile    -  Make File for Assembly Language 
  2. #                    Structured Macros Example.
  3. #
  4. #    Copyright Apple Computer, Inc. 1986-1990
  5. #    All rights reserved.
  6. #
  7. #    This makefile builds:
  8. #        Sample  - an example application.
  9. #
  10. # This file is a MPW Script file to build the sample program in
  11. #    {MPW}Interfaces:AStructMacs
  12. #
  13.  
  14. AOptions        = -w
  15.  
  16. AObjs            = Sample.a.o 
  17.  
  18. FlowCtlMacs.d    ƒ FlowCtlMacs.a
  19.     asm FlowCtlMacs.a
  20.     
  21. ProgStrucMacs.d    ƒ ProgStrucMacs.a
  22.     asm ProgStrucMacs.a
  23.  
  24. Sample.a.o        ƒƒ Sample.make FlowCtlMacs.d ProgStrucMacs.d
  25.  
  26. Sample            ƒƒ {AObjs} Sample.make
  27.                     Link -o {Targ} {AObjs}
  28.                     SetFile {Targ} -t APPL -c 'MOOS' -a B
  29.  
  30. Sample            ƒƒ Sample.r Sample.make
  31.                     Rez -rd -o {Targ} Sample.r -append
  32.